for(i in 0 until a.size) { println(a[i]) /* iterates entire list */ }
for (i in 1 until 10) { print(i) }